Screen:GoToXY(x, y)
Relocates the printing of texts to-be-printed.
Be sure to use this function before trying to print any texts/message.
function main() { Screen:Show() Screen:GoToXY(100,100) Screen:PrintString("Mabuhay!") //print the message Screen:Render() //display the message to the Screen dialog box Konsol:Delay(1000) //pause for a second to read the message }